home *** CD-ROM | disk | FTP | other *** search
- /* 02 */
- typedef struct {
- COLOR c;
- POINT_F v;
- #ifdef MSB_FIRST
- short h,w;
- #else
- short w,h;
- #endif
- } Fill;
-
- /* 20 */
- typedef struct {
- COLOR c;
- POINT_F v[3];
- } PolyF3;
-
- /* 24 */
- typedef struct {
- COLOR c;
- POINT_FT v[3];
- } PolyFT3;
-
- /* 30 */
- typedef struct {
- POINT_G v[3];
- } PolyG3;
-
- /* 34 */
- typedef struct {
- POINT_GT v[3];
- } PolyGT3;
-
- /* 28 */
- typedef struct {
- COLOR c;
- POINT_F v[4];
- } PolyF4;
-
- /* 2c */
- typedef struct {
- COLOR c;
- POINT_FT v[4];
- } PolyFT4;
-
- /* 38 */
- typedef struct {
- POINT_G v[4];
- } PolyG4;
-
- /* 3c */
- typedef struct {
- POINT_GT v[4];
- } PolyGT4;
-
- /* 40 */
- typedef struct {
- COLOR c;
- POINT_F v[2];
- } LineF2;
-
- /* 48 */
- typedef struct {
- COLOR c;
- POINT_F v[3];
- long reserved;
- } LineF3;
-
- /* 4c */
- typedef struct {
- COLOR c;
- POINT_F v[4];
- long reserved;
- } LineF4;
-
- /* 50 */
- typedef struct {
- COLOR c;
- POINT_G v[2];
- } LineG2;
-
- /* 58 */
- typedef struct {
- COLOR c;
- POINT_G v[3];
- long reserved;
- } LineG3;
-
- /* 5c */
- typedef struct {
- COLOR c;
- POINT_G v[4];
- long reserved;
- } LineG4;
-
- /* 60 */
- typedef struct {
- COLOR c;
- POINT_F v;
- #ifdef MSB_FIRST
- short h,w;
- #else
- short w,h;
- #endif
- } Tile;
-
- /* 64 */
- typedef struct {
- COLOR c;
- POINT_FT v;
- #ifdef MSB_FIRST
- short h,w;
- #else
- short w,h;
- #endif
- } Sprt;
-
- /* 68 */
- typedef struct {
- COLOR c;
- POINT_F v;
- } Tile1;
-
- /* 70 */
- typedef struct {
- COLOR c;
- POINT_F v;
- } Tile8;
-
- /* 74 */
- typedef struct {
- COLOR c;
- POINT_FT v;
- } Sprt8;
-
- /* 78 */
- typedef struct {
- COLOR c;
- POINT_F v;
- } Tile16;
-
- /* 70 */
- typedef struct {
- COLOR c;
- POINT_FT v;
- } Sprt16;
-
- /* 80 */
- typedef struct {
- COLOR c;
- #ifdef MSB_FIRST
- short y0,x0;
- short y1,x1;
- short h,w;
- #else
- short x0,y0;
- short x1,y1;
- short w,h;
- #endif
- } Move;